home *** CD-ROM | disk | FTP | other *** search
/ PC World 2008 September / PCWorld_2008-09_cd.bin / domacnost a kancelar / joomla / Joomla_1.5.4-Stable-Full_Package.exe / libraries / openid / README < prev   
Text File  |  2008-07-06  |  3KB  |  92 lines

  1.  
  2. PHP OpenID
  3. ----------
  4.  
  5. This is the PHP OpenID library by JanRain, Inc.  You can visit our
  6. website for more information about this package and other OpenID
  7. implementations and tools:
  8.  
  9.   http://www.openidenabled.com/
  10.  
  11. INSTALLATION
  12. ============
  13.  
  14. You will need PHP 4.3.0 or greater to use this library.  We have
  15. tested the library on PHP 4.3.0, 4.4.1, and 5.1.1.
  16.  
  17. At any time, visit the 'detect.php' script in the examples/ directory
  18. to see a web page detailing the state of your PHP installation.  This
  19. script will tell you if you meet the installation requirements.
  20.  
  21. Follow these steps:
  22.  
  23. 1. Install dependencies.
  24.  
  25.    - Enable either the GMP extension or Bcmath extension. (GMP is
  26.      STRONGLY recommended because it's MUCH faster!)  This is
  27.      required.
  28.  
  29.    - Enable the CURL extension.
  30.  
  31.    - If you plan to use SQLite, PostgreSQL, or MySQL to store OpenID
  32.      data, you'll need PEAR DB.  You can install this by running this
  33.      as root:
  34.  
  35.      # pear install DB
  36.  
  37.      You'll also need to install and enable the appropriate PHP
  38.      database extension.  Alternatively, you can store OpenID data on
  39.      the filesystem instead of using a relational database.  Nothing
  40.      special is required for using the filesystem method.
  41.  
  42.    - Install either the DOM or domxml PHP XML processing extension.
  43.  
  44. 2. Use the PEAR installer to install the package.  To use the PEAR
  45.    installer, run this command from the package directory:
  46.  
  47.    # pear install package.xml
  48.  
  49.    If your PEAR version is sufficiently new, you can run this instead:
  50.  
  51.    # pear install package2.xml
  52.  
  53.    If the PEAR installer isn't available, you can copy the Auth/ and
  54.    Services/ directories into your PHP include path.
  55.  
  56. TESTING YOUR SETUP
  57. ==================
  58.  
  59. You can use the example code to test your setup.  To run the example
  60. consumer or server, follow the instructions in the examples/README
  61. file.
  62.  
  63. USING THE API
  64. =============
  65.  
  66. The best way to get started using the API is to take a look at the
  67. example consumer and server in the examples/ directory.  See the
  68. examples/README file for more details.
  69.  
  70. GETTING HELP
  71. ============
  72.  
  73. If you have any questions, recommendations, or patches, please tell
  74. us!  Subscribe to our OpenID development discussion list at
  75.  
  76.   http://lists.openidenabled.com/mailman/listinfo/dev
  77.  
  78. DOCUMENTATION
  79. =============
  80.  
  81. You can view the HTML library documentation in the doc/ directory.
  82. You can also find it on the web at
  83.  
  84.   http://www.openidenabled.com/resources/docs/openid/php/
  85.  
  86. This package's documentation is in PhpDoc format.  To generate the
  87. documentation, install phpdoc and run the admin/makedoc.sh script.
  88. Phpdoc lives at:
  89.  
  90.   http://www.phpdoc.org/
  91.  
  92.